home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / exec / resident.inc < prev    next >
Text File  |  1998-06-24  |  381b  |  23 lines

  1. include "inc/exec/types.inc";
  2.  
  3. struct Resident is
  4.   rt_MatchWord:uword;
  5.   rt_MatchTag:ulong;
  6.   rt_EndSkip:ulong;
  7.   rt_Flags:ubyte;
  8.   rt_Version:ubyte;
  9.   rt_Type:ubyte;
  10.   rt_Pri:byte;
  11.   rt_Name:ulong;
  12.   rt_IdString:ulong;
  13.   rt_Init:ulong;
  14. ;
  15.  
  16. def RTC_MATCHWORD = $4afc;
  17.  
  18. def RTF_AUTOINIT = (1<<7);
  19. def RTF_AFTERDOS = (1<<2);
  20. def RTF_SINGLETASK = (1<<1);
  21. def RTF_COLDSTART = (1<<0);
  22.  
  23.